home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
tcl
/
tclmotif.1
/
tclmotif
/
tm.1.2
/
send
/
programs
/
tkSend3
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-11-15
|
295 b
|
16 lines
#!/pub/local/bin/wish -f
button .button -command incrementLabel -text 1
pack .button -side left
proc incrementLabel {} {
set text [.button configure -text]
set value [lindex $text 4]
incr value
.button configure -text $value
if {$value < 20} {
send xmSend3 incrementLabel
}
}